home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / system-config-printer / troubleshoot / ServerFirewalled.py < prev    next >
Text File  |  2009-10-19  |  2KB  |  52 lines

  1. #!/usr/bin/env python
  2.  
  3. ## Printing troubleshooter
  4.  
  5. ## Copyright (C) 2008, 2009 Red Hat, Inc.
  6. ## Copyright (C) 2008, 2009 Tim Waugh <twaugh@redhat.com>
  7.  
  8. ## This program is free software; you can redistribute it and/or modify
  9. ## it under the terms of the GNU General Public License as published by
  10. ## the Free Software Foundation; either version 2 of the License, or
  11. ## (at your option) any later version.
  12.  
  13. ## This program is distributed in the hope that it will be useful,
  14. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ## GNU General Public License for more details.
  17.  
  18. ## You should have received a copy of the GNU General Public License
  19. ## along with this program; if not, write to the Free Software
  20. ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. from base import *
  23. class ServerFirewalled(Question):
  24.     def __init__ (self, troubleshooter):
  25.         Question.__init__ (self, troubleshooter, "Server firewalled")
  26.         page = self.initial_vbox (_("Check Server Firewall"),
  27.                                    _("It is not possible to connect to the "
  28.                                      "server."))
  29.         self.label = gtk.Label ()
  30.         self.label.set_alignment (0, 0)
  31.         self.label.set_line_wrap (True)
  32.         page.pack_start (self.label, False, False, 0)
  33.         troubleshooter.new_page (page, self)
  34.  
  35.     def display (self):
  36.         answers = self.troubleshooter.answers
  37.         if not answers['cups_queue_listed']:
  38.             return False
  39.  
  40.         if (answers.has_key ('remote_server_connect_ipp') and
  41.             answers['remote_server_connect_ipp'] == False):
  42.             self.label.set_text (_("Please check to see if a firewall or "
  43.                                    "router configuration is blocking TCP "
  44.                                    "port %d on server '%s'.")
  45.                                  % (answers['remote_server_port'],
  46.                                     answers['remote_server_try_connect']))
  47.             return True
  48.         return False
  49.  
  50.     def can_click_forward (self):
  51.         return False
  52.